home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 7: Sunsite
/
Linux Cubed Series 7 - Sunsite Vol 1.iso
/
system
/
admin
/
linuxcon.000
/
linuxcon
/
linuxconf-1.6
/
help.files
/
install.script
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-12
|
321 b
|
16 lines
#!/bin/sh
if [ $# != 2 ]; then
echo This utility is intended to be called from the Makefile
echo install.sh src_sub_dir abs_dest_dir
else
HELPDIR=$2
cd $1
for f in */*.help */*.html
do
DIR=`dirname $f`
echo Installing help file $f
mkdir -p $HELPDIR/$DIR
install -m 644 -o bin -g bin $f $HELPDIR/$f
done
fi